Forum Activity for @michael

michael
@michael
02/17/19 12:40:01PM
7,816 posts



This is my config file:
/etc/apache2/sites-available/yoursite.com.conf
<VirtualHost *:80>

    ServerAdmin 0@somewhere.com
    ServerName yoursite.com
    ServerAlias www.yoursite.com

    DirectoryIndex index.php index.html index.htm
    DocumentRoot /home/vagrant/sites/yoursite.com/public_html
    <Directory /home/vagrant/sites/yoursite.com/public_html/>
         Options Indexes FollowSymLinks MultiViews
         AllowOverride All
         Require all granted
    </Directory>

    ErrorLog /home/vagrant/sites/yoursite.com/logs/error.log
    LogLevel error

    CustomLog /home/vagrant/sites/yoursite.com/logs/access.log combined

</VirtualHost>
michael
@michael
02/17/19 12:33:44PM
7,816 posts



These are our server setup guides:

https://www.jamroom.net/brian/documentation/guides

They still refer to ubuntu 12.04 but I set my virtualbox (running on vagrant on a mac) on ubunutu 18.04 and it only needed a few tweaks.

The bit on virtual hosting is here:
https://www.jamroom.net/brian/documentation/guides/1211/configuring-apache-for-virtual-hosting
michael
@michael
02/16/19 07:27:49PM
7,816 posts



all looks good. So the question becomes, why is your server ignoring it.

All URLs in jamroom are picked up by mod_rewrite and passed in to router.php so there is no real url /user/signup.

Need to figure out whats going on on your server to prevent that from happening.

Guesses:
* Are you using localhost on windows? // wont work
* do you have a domain name? // wont work on an ip address

* is there any info in your servers error log.
michael
@michael
02/15/19 08:05:51PM
7,816 posts



Sounds like mod_rewrite is not installed on the server. OR
you've forgotten to upload the hidden .htaccess file along with the SFTP upload.
updated by @michael: 09/16/23 01:42:32PM
michael
@michael
02/13/19 07:41:20PM
7,816 posts

Disable caching of an individual template


Jamroom Developers

EMGPOWERED:
brian:
Make sure and disabled the "Full Page Caching" option in the Core global config.

Full Page Caching was not disabled.
Brian is saying to disable full page caching.
michael
@michael
02/03/19 05:00:16PM
7,816 posts

Mobile version - no text editor, no actions on button upload something...


Using Jamroom

could you take a screenshot of the page you're talking about, or give a URL. Its unclear how to take the same steps you are taking to reproduce this issue.

Thanks :)
michael
@michael
01/27/19 08:16:20PM
7,816 posts

New Install, Error 500


Installation and Configuration

jrFormSubmit is defined in:
/modules/jrCore/js/jrCore.js

Try re-installing the modules, if you're missing core funcitons something is messed up.
michael
@michael
01/23/19 08:27:57PM
7,816 posts

New Install, Error 500


Installation and Configuration

someone else said that the chrome browser will show 500 server error if it gets a blank white page. This is chrome lying to you. Could be an issue though. Check the link in FireFox to see if you also get a 500 Server Error to know that it actually is a server error.

If it turns out that its not a real server error, then try with a different un-altered skin. suggest jrElastic2

because in that case it could be an issue with a missing closing tag in the templates.
michael
@michael
01/22/19 07:49:52PM
7,816 posts

Signup verification by SMS


Suggestions

Do you know of any services that act as an inbetween for SMS? eg for mail we can use mailgun.com to programatically send and receive emails. Anything similar for SMS?
  95